home *** CD-ROM | disk | FTP | other *** search
- ; script to install DMS-Face
-
- (set Opt 3)
- (complete 0)
-
- ;Get directory to install DMS-Face in.
- (set destdir
- (askdir
- (prompt "In which drawer should DMS-Face be installed?")
- (help @askdir-help)
- (default ("Utilities"))
- )
- )
-
- (complete 10)
-
- (set installfiles
- (askoptions
- (prompt "Which of the following optional programs/helpfile should be installed ?")
- (help @askoptions-help)
- (choices "DMS-Face" "DMS-Face.Guide")
- (default Opt)
- )
- )
-
- (complete 30)
-
- ;Copy program files to destination.
-
- (if (BITAND installfiles 1)
- (copyfiles
- (source "DMS-Face")
- (dest destdir)
- )
- )
-
- (if (BITAND installfiles 1)
- (copyfiles
- (source "DMS-Face.info")
- (dest destdir)
- )
- )
-
- (complete 60)
-
- (if (BITAND installfiles 2)
- (
- (makedir ("Help:English")
- )
-
- (copyfiles
- (source "Help/DMS-Face.guide")
- (dest "help:english/")
- )
- )
- )
-
- (if (BITAND installfiles 2)
- (copyfiles
- (source "Help/DMS-Face.guide.info")
- (dest "help:english/")
- )
- )
-
- (complete 80)
-
- (copyfiles
- (source "DMS-FACE.1.cfg")
- (dest "ENVARC:MUI/")
- )
-
- (copyfiles
- (source "DMS-FACE.1.cfg")
- (dest "ENV:MUI/")
- )
-
- ;Correct @default-dest so that final information is correct.
- (set @default-dest destdir)
-
- (complete 100)
-
- (exit)
-